:root {
    --purple-deep: #5B0EA6;
    --purple-main: #7B2FBE;
    --purple-mid: #9B51E0;
    --purple-light: #C084FC;
    --purple-pale: #EDE9FE;
    --purple-ghost: #F5F3FF;
    --white: #FFFFFF;
    --gray-soft: #F8F7FF;
    --gray-text: #4B4B6B;
    --gray-muted: #9B9BC0;
    --black: #1A1A2E;
  }

  * { box-sizing: border-box; margin: 0; padding: 0; }

  body {
    font-family: 'Cairo', sans-serif;
    background: var(--white);
    color: var(--black);
    overflow-x: hidden;
  }

  /* ── HERO ── */
  .hero {
    background: linear-gradient(135deg, var(--purple-deep) 0%, var(--purple-main) 50%, var(--purple-mid) 100%);
    padding: 70px 20px 90px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 20% 50%, rgba(255,255,255,0.08) 0%, transparent 60%),
                radial-gradient(ellipse at 80% 20%, rgba(255,255,255,0.06) 0%, transparent 50%);
  }
  .hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    color: #fff;
    padding: 6px 20px;
    border-radius: 999px;
    font-size: 0.82rem;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
    border: 1px solid rgba(255,255,255,0.25);
  }
  .hero h1 {
    font-size: clamp(2.2rem, 6vw, 3.8rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.15;
    position: relative;
  }
  .hero h1 span {
    color: var(--purple-light);
  }
  .hero-sub {
    color: rgba(255,255,255,0.8);
    font-size: 1.05rem;
    margin-top: 14px;
    max-width: 580px;
    margin-inline: auto;
    line-height: 1.8;
    position: relative;
  }
  .hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0; right: 0;
    height: 60px;
  }
  .hero-wave svg { width: 100%; height: 100%; }

  /* ── LAYOUT ── */
  .container {
    max-width: 1020px;
    margin: 0 auto;
    padding: 0 20px;
  }

  /* ── SECTION TITLES ── */
  .section {
    padding: 60px 20px;
  }
  .section-alt {
    background: var(--purple-ghost);
  }
  .section-title {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 36px;
  }
  .section-title .icon {
    width: 44px; height: 44px;
    background: linear-gradient(135deg, var(--purple-main), var(--purple-mid));
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(123,47,190,0.35);
  }
  .section-title h2 {
    font-size: 1.55rem;
    font-weight: 800;
    color: var(--purple-deep);
  }

  /* ── INTRO PILLS ── */
  .pills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    gap: 16px;
  }
  .pill-card {
    background: var(--white);
    border: 1.5px solid var(--purple-pale);
    border-radius: 14px;
    padding: 18px 20px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    transition: box-shadow 0.2s, transform 0.2s;
  }
  .pill-card:hover {
    box-shadow: 0 6px 24px rgba(123,47,190,0.12);
    transform: translateY(-2px);
  }
  .pill-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: var(--purple-mid);
    flex-shrink: 0;
    margin-top: 6px;
  }
  .pill-card p {
    font-size: 0.93rem;
    color: var(--gray-text);
    line-height: 1.65;
  }

  /* ── PACKAGE CARDS ── */
  .packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
  }
  .pkg-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(91,14,166,0.1);
    transition: transform 0.25s, box-shadow 0.25s;
  }
  .pkg-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(91,14,166,0.18);
  }
  .pkg-header {
    background: linear-gradient(135deg, var(--purple-deep), var(--purple-mid));
    padding: 28px 28px 22px;
    color: #fff;
  }
  .pkg-header .pkg-name {
    font-size: 1.35rem;
    font-weight: 900;
    letter-spacing: 0.02em;
  }
  .pkg-header .pkg-price {
    font-size: 2.1rem;
    font-weight: 900;
    margin-top: 8px;
    line-height: 1;
  }
  .pkg-header .pkg-price span {
    font-size: 1rem;
    font-weight: 400;
    opacity: 0.8;
  }
  .pkg-header .pkg-price-note {
    font-size: 0.78rem;
    opacity: 0.7;
    margin-top: 4px;
  }
  .pkg-body {
    background: var(--white);
    padding: 24px 28px;
  }
  .pkg-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 11px 0;
    border-bottom: 1px solid var(--purple-ghost);
    gap: 10px;
  }
  .pkg-row:last-child { border-bottom: none; }
  .pkg-row-label {
    font-size: 0.88rem;
    color: var(--gray-muted);
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
  }
  .pkg-row-label .dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--purple-light);
    flex-shrink: 0;
  }
  .pkg-row-value {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--purple-deep);
    text-align: left;
  }
  .pkg-code {
    margin-top: 20px;
    background: var(--purple-ghost);
    border: 1.5px dashed var(--purple-light);
    border-radius: 10px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .pkg-code span:first-child {
    font-size: 0.82rem;
    color: var(--gray-muted);
  }
  .pkg-code .code-val {
    font-family: 'Courier New', monospace;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--purple-deep);
    letter-spacing: 0.05em;
  }

  /* ── FEATURES HIGHLIGHT ── */
  .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 20px;
  }
  .feat-card {
    background: var(--white);
    border-radius: 16px;
    padding: 24px;
    border: 1.5px solid rgba(155,81,224,0.15);
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.2s;
  }
  .feat-card::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 80px; height: 80px;
    background: radial-gradient(circle, rgba(192,132,252,0.18) 0%, transparent 70%);
    border-radius: 0 16px 0 80px;
  }
  .feat-card:hover { box-shadow: 0 6px 24px rgba(123,47,190,0.12); }
  .feat-num {
    font-size: 2rem;
    font-weight: 900;
    color: var(--purple-pale);
    line-height: 1;
    margin-bottom: 10px;
  }
  .feat-card p {
    font-size: 0.93rem;
    color: var(--gray-text);
    line-height: 1.7;
  }

  /* ── PRICING TABLE ── */
  .pricing-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(91,14,166,0.08);
  }
  .pricing-table th {
    background: linear-gradient(135deg, var(--purple-deep), var(--purple-main));
    color: #fff;
    padding: 16px 20px;
    font-size: 0.95rem;
    font-weight: 700;
    text-align: center;
  }
  .pricing-table td {
    padding: 14px 20px;
    text-align: center;
    font-size: 0.92rem;
    color: var(--gray-text);
    border-bottom: 1px solid var(--purple-ghost);
  }
  .pricing-table tr:nth-child(even) td { background: var(--purple-ghost); }
  .pricing-table tr:last-child td { border-bottom: none; }
  .pricing-table td:first-child { font-weight: 600; color: var(--purple-deep); }

  /* ── INFO BANDS ── */
  .band {
    background: linear-gradient(135deg, var(--purple-deep) 0%, var(--purple-main) 100%);
    color: #fff;
    border-radius: 18px;
    padding: 28px 32px;
    margin: 24px 0;
    position: relative;
    overflow: hidden;
  }
  .band::after {
    content: '';
    position: absolute;
    left: -30px; top: -30px;
    width: 120px; height: 120px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
  }
  .band h3 {
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 10px;
    position: relative;
  }
  .band p, .band li {
    font-size: 0.92rem;
    opacity: 0.9;
    line-height: 1.75;
    position: relative;
  }
  .band ul { padding-right: 18px; }

  /* ── MANAGEMENT ── */
  .mgmt-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
    margin-top: 10px;
  }
  .mgmt-card {
    background: var(--white);
    border: 1.5px solid var(--purple-pale);
    border-radius: 14px;
    padding: 20px;
    text-align: center;
    transition: all 0.2s;
  }
  .mgmt-card:hover {
    border-color: var(--purple-mid);
    box-shadow: 0 4px 16px rgba(123,47,190,0.12);
  }
  .mgmt-icon { font-size: 2rem; margin-bottom: 10px; }
  .mgmt-card strong {
    display: block;
    color: var(--purple-deep);
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 4px;
  }
  .mgmt-card span {
    font-size: 0.82rem;
    color: var(--gray-muted);
  }

  /* ── TERMS ── */
  .terms-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
    gap: 14px;
  }
  .term-item {
    display: flex;
    gap: 12px;
    background: var(--white);
    border: 1px solid var(--purple-pale);
    border-radius: 12px;
    padding: 14px 16px;
    align-items: flex-start;
  }
  .term-check {
    width: 22px; height: 22px;
    background: linear-gradient(135deg, var(--purple-main), var(--purple-mid));
    border-radius: 6px;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.75rem;
    color: #fff;
    flex-shrink: 0;
    margin-top: 1px;
  }
  .term-item p {
    font-size: 0.88rem;
    color: var(--gray-text);
    line-height: 1.65;
  }

  /* ── ADDONS TABLE WRAP ── */
  .addon-tables {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
  }
  .addon-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(91,14,166,0.08);
  }
  .addon-card-header {
    background: linear-gradient(135deg, var(--purple-main), var(--purple-mid));
    color: #fff;
    padding: 14px 20px;
    font-weight: 800;
    font-size: 1rem;
  }
  .addon-card table {
    width: 100%;
    border-collapse: collapse;
  }
  .addon-card table th {
    background: var(--purple-ghost);
    color: var(--purple-deep);
    font-size: 0.82rem;
    padding: 10px 14px;
    text-align: right;
    font-weight: 700;
    border-bottom: 1px solid var(--purple-pale);
  }
  .addon-card table td {
    padding: 10px 14px;
    font-size: 0.88rem;
    color: var(--gray-text);
    border-bottom: 1px solid var(--purple-ghost);
    text-align: right;
  }
  .addon-card table tr:last-child td { border-bottom: none; }
  .addon-card table td:last-child {
    font-weight: 700;
    color: var(--purple-deep);
    text-align: left;
  }

  /* ── FOOTER ── */
  footer {
    background: linear-gradient(135deg, var(--purple-deep), var(--black));
    color: rgba(255,255,255,0.7);
    text-align: center;
    padding: 32px 20px;
    font-size: 0.88rem;
  }
  footer strong { color: var(--purple-light); }

  /* ── DIVIDER ── */
  .divider {
    height: 1px;
    background: linear-gradient(to left, transparent, var(--purple-pale), transparent);
    margin: 0;
  }

  /* responsive */
  @media (max-width: 600px) {
    .pkg-header .pkg-price { font-size: 1.6rem; }
    .section { padding: 44px 16px; }
  }